home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / emulation / anescgfx / anescgfx.install < prev    next >
Text File  |  1999-11-30  |  2KB  |  74 lines

  1. ; ANES Install-script 0.93
  2.  
  3.  
  4.     (message "This script will install A/NES CGFX on your HD\n>-----------------------------<\nA/NES was created by\nMorgan Johansson\n(morgan.johansson@mbox301.swipnet.se)\n&\nFredrik Schultz\n(fredrik.schultz@swipnet.se)")
  5.  
  6.     (complete 0)
  7.  
  8.  
  9. ;MAKES THE "A/NES" DIRECTORY
  10.  
  11.     (set dest_dir
  12.       (tackon (askdir
  13.                 (prompt "Where do you want to install ANES CGFX?\n"
  14.                         "A drawer called ANESCGFX will be created.")
  15.                 (help @askdir-help)
  16.                 (default "ram:")
  17.                 (disk)
  18.               )
  19.               "ANESCGFX"
  20.       )
  21.     )
  22.  
  23.     (set @default-dest dest_dir)
  24.     (makedir dest_dir)
  25.  
  26.  
  27.  
  28. ; COPIES THE A/NES EXECUTABLE & GUIDE TO THE DESTINATION DIRETORY + ICONS
  29.  
  30.     (copyfiles
  31.       (source "ANESCGFX.020")
  32.       (dest (dest_dir))
  33.       (infos)
  34.     )
  35.     (copyfiles
  36.       (source "ANESCGFX.060")
  37.       (dest (dest_dir))
  38.       (infos)
  39.     )
  40.  
  41.     (copyfiles
  42.       (source "ANESCGFX.guide")
  43.       (dest (dest_dir))
  44.       (infos)
  45.     )
  46.  
  47.     (copyfiles
  48.       (source "libs/ANESutility.library")
  49.       (dest "LIBS:")
  50.       (infos)
  51.     )
  52.  
  53.     (complete 50)
  54.  
  55. ; COPY THE DRAWER ICON
  56.     (copyfiles
  57.       (source "/ANESCGFX.info")
  58.       (dest (tackon dest_dir "/")))
  59.      
  60.  
  61. ; ASKS WHERE TO INSTALL THE FONT
  62.  
  63. (copyfiles
  64.     (prompt "I will have to install NINTENDO fonts\nRequired to get ANES running\nWhere should I put them?")
  65.     (help @copyfiles-help)
  66.     (source "fonts/")
  67.     (dest "fonts:")
  68.     (all)
  69.     (confirm)
  70. )
  71.  
  72.     (complete 100)
  73.     (exit)
  74.